home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
vbdatabs
/
dbconfig.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-03-26
|
3KB
|
85 lines
// ------------------------------- //
// -------- Start of File -------- //
// ------------------------------- //
// ----------------------------------------------------------- //
// C++ Header File Name: dbconfig.h
// Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
// Produced By: Doug Gaer
// File Creation Date: 09/17/1997
// Date Last Modified: 03/26/1999
// Copyright (c) 1997 Douglas M. Gaer
// ----------------------------------------------------------- //
// ---------- Include File Description and Details ---------- //
// ----------------------------------------------------------- //
/*
The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
All those who put this code or its derivatives in a commercial
product MUST mention this copyright in their documentation for
users of the products in which this code or its derivative
classes are used. Otherwise, you have the freedom to redistribute
verbatim copies of this source code, adapt it to your specific
needs, or improve the code and release your improvements to the
public provided that the modified files carry prominent notices
stating that you changed the files and the date of any change.
THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
CORRECTION.
Modify this file to customize the string database. All of
the data member names must be set to a character string or
set to 0:
const char *M2Name = "SEC. CIRCUIT #";
const char *M2Name = 0;
If the data member name is set to 0, then that data member's
name will not be used. Space will still be allocated for the
data member in the database so that it can be used in the
future. The "KeyName" data member must always be set because
it represents a unique name used to identify each object in
the data base.
The KeyName value must always by set. The initial value is
set to " " and must be changed to the desired value for each
application.
*/
// ----------------------------------------------------------- //
#ifndef __DBCONFIG_HPP
#define __DBCONFIG_HPP
// Key alphanumeric data member
const char *KeyName = "HOSTNAME";
// Second alphanumeric data member
const char *M2Name = "IP ADDRESS";
// Third alphanumeric data member
const char *M3Name = "MACHINE TYPE";
// Fourth alphanumeric data member
const char *M4Name = "OS TYPE";
// Fifth alphanumeric data member
const char *M5Name = "DROP/ROOM #";
// Sixth alphanumeric data member
const char *M6Name = "HUB LOCATION";
// Seventh alphanumeric data member
const char *M7Name = "CABLE/WIRE #";
// Eighth alphanumeric data member
const char *M8Name = "RACK PANEL #";
// Comment alphanumeric data member
const char *Comments = "COMMENTS";
#endif // __DBCONFIG_HPP //
// ----------------------------------------------------------- //
// ------------------------------- //
// --------- End of File --------- //
// ------------------------------- //